4D Chart v13CT Chart data |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
4D Chart v13
CT Chart data
|
CT Chart data ( area ; type ; size ; groupCategory ; groupSeries ; numTable ; categoryField ; seriesField ; valuesField ) -> Function result | ||||||||
Parameter | Type | Description | ||||||
area | Longint |
![]() |
4D Chart area | |||||
type | Integer |
![]() |
Type of graph (see codes below) | |||||
size | Integer |
![]() |
Option for initial size of graph 1 = Variable 2 = Relative to window (Auto-Variable) 3 = Relative to graph (Auto-Document) | |||||
groupCategory | Integer |
![]() |
Group the Category data? 0 = No 1 = Yes | |||||
groupSeries | Integer |
![]() |
Group the Series data? 0 = No 1 = Yes | |||||
numTable | Integer |
![]() |
Number of the table from which to graph data | |||||
categoryField | Integer |
![]() |
Number of the field to plot on the Category axis | |||||
seriesField | Integer |
![]() |
Number of the field to plot as the series | |||||
valuesField | Integer |
![]() |
Number of the field to plot on the Values axis | |||||
Function result | Longint |
![]() |
Object ID of the chart | |||||
CT Chart data creates a graph of the current selection of records of table. The function returns the chart’s Object ID.
The following table lists the codes for the type parameter.
Code | Chart Type |
1 | Area |
2 | Column |
3 | Picture |
4 | Line |
5 | Scatter |
6 | Pie |
7 | Polar |
8 | 2D XY |
100 | 3D Column |
101 | 3D Line |
102 | 3D Area |
103 | 3D Surface |
104 | 3D Triangle |
105 | 3D Spike |
The size parameter determines how much space the graph fills when it is generated and how the graph size changes when you resize the window:
groupCategory specifies whether or not the data on the Category axis should be grouped.
groupSeries specifies whether or not the data on the Category axis should be grouped.
table is the number of the table to graph. You can retrieve the number of a table by passing a pointer to the table as a parameter to the Table function.
categoryField is the number of the field to graph on the Category axis.
seriesField is the number of the field to graph on the Series axis. In a two-dimensional graph, the series are displayed on the Category axis. In a three-dimensional graph, the series are displayed on the Series axis.
valuesField is the number of the field to graph on the Values axis.
You can retrieve the number of a field by passing a pointer to the field as a parameter to the Field function.
Product: 4D Chart
Theme: CT Chart
Number:
14527
Modified: 4D Chart 6
CT Chart arrays
CT Chart selection